fn: std::vector<string>

[contents]

Contents

Syntax

The syntax for std::vector<string> definitions is:

f++:  
std::vector<string> definitions
std::vector<string>(definitions)
:=(std::vector<string>, definitions)
n++:  
@std::vector<string> definitions
@std::vector<string>(definitions)
@:=(std::vector<string>, definitions)

Note: If you are using the first syntax for variable definitions and want to have more code and/or text following on the same line then simply end the definition with ';'.

Description

The std::vector<string> type is used for standard C++ vectors of strings.

Note: If you need to define thousands of variables then := is faster, plus it has useful error messages for unrecognised types.

Member functions

The following member functions are available for std::vector<string> variables:

option description
at(index) get element at specified index
erase(index) erase element at specified index
erase(index, index) erase elements between specified indices
pop_back() erase last element
push_back(params) push elements on to back
set(index, param) set element at specified index
size() returns current size
option description

Options

The following options are available for std::vector<string> definitions:

option description
const definition of a constant
layer="x" define variable at layer x
!mf do not add member functions for variables
private definition of a private
scope+="x" add x to scopes variable can be accessed from
option description

f++ example

Examples of std::vector<string> being defined with f++:

std::vector<string> v
v.push_back("cat", "dog")
console(v.at(1))

std::vector<string> v(20), v2(30)
v2.set(20, "hello")
console(v2.at(20))

std::vector<string> v(2000, "hello")
console(v.at(20))

n++ example

Examples of std::vector<string> being defined with n++:

@std::vector<string> v
@v.push_back("cat", "dog")
@console(v.at(1))

@std::vector<string> v(20), v2(30)
@v2.set(20, "hello")
@console(v2.at(20))

@std::vector<string> v(2000, "hello")
@console(v.at(20))